withoutTestClass

fun <T : KoTestClassProvider> List<T>.withoutTestClass(testPropertyName: String = "sut", moduleName: String? = null, sourceSetName: String? = null): List<T>

List containing declarations without a test.

Return

A list containing declarations without a test.

Parameters

testPropertyName

the test property name to check. By default, "sut".

moduleName

the name of the module to check (optional).

sourceSetName

the name of the source set to check (optional).


fun <T : KoTestClassProvider> List<T>.withoutTestClass(moduleName: String? = null, sourceSetName: String? = null, predicate: (KoClassDeclaration) -> Boolean): List<T>

List containing declarations without a test matching the predicate.

Return

A list containing declarations without a test matching the predicate.

Parameters

moduleName

the name of the module to check (optional).

sourceSetName

the name of the source set to check (optional).

predicate

A function that defines the condition to be met by a test class.